home *** CD-ROM | disk | FTP | other *** search
/ Champak Vol A-4 / (Vol A-4) Vol. A4.iso / Games / the_octopus-show.swf / scripts / DefineButton2_186 / BUTTONCONDACTION on(release).as
Text File  |  2008-03-13  |  283b  |  17 lines

  1. on(release){
  2.    tellTarget(_root)
  3.    {
  4.       page += 10;
  5.       if(page > maxScores)
  6.       {
  7.          page = maxScores;
  8.       }
  9.       loadScores();
  10.       ScoreText.Last._visible = true;
  11.    }
  12.    if(_root.page > _root.maxScores - 20)
  13.    {
  14.       _visible = false;
  15.    }
  16. }
  17.